/*===============================================
 Configuración inicial de página 
 ================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*outline: 1px solid red;*/ /*===Lo utilicé para config. margin/padding de cajas===*/
}

html {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #DADEFB;
}

/*===============================================*/

header {
    width: 100%;
    height: 300px;
    position: relative;
    top: 50px;
    background-color: #5F7AE7;
    transform: skewY(-5deg);
    z-index: 1;
}

.nombre {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 25%;
    left: 24%;
    color: white;
    transform: skewY(5deg);
}

h1 {font-size: 5vw;}

h2 {font-size: 3vw;}

h3 {
    padding: 5px;
    text-align: center;
    font-size: 25px;
    border-bottom: 1px dashed;
}

li {margin: 20px;}

/*===================================
Barra de navegación 
=====================================*/

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 3;
}
  
.navbar li {
    float: left;
    margin: 0%;
}
  
.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
.navbar li a:hover:not(.active) {
    background-color: #111;
}
  
.active {
    background-color: #1B998B;
}

/*=======================================*/

section {
    margin-top: 8%;
    position: relative;
    z-index: 2;
}

article {
    width: 90%;
    height: auto;
    margin: 2% auto;
    padding: 20px;
    background-color: #F58F29;
    border-radius: 20px;
}

img {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 20%;
    right: 5%;
    border-radius: 100%;
    transform: skewY(5deg);
}

#lista_contacto {list-style-type: none;}

button {padding: 5px;}

#link_email:link {color: white;}
#link_email:visited {color: #5F7AE7;}
#link_email:hover {color: #111;}
#link_email:active {color: aqua;}

/*===========================================================
Iconos de Font Awesome que utilicé en contenedor "Contacto"
============================================================*/

#teléfono::before{
	font-family:"Font Awesome 5 Free";
	content:"\f095";
    color: #A1EF8B;
	margin-right:8px;
    font-weight: 900;
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -.0667em;
    display: inline-block;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
}

#email::before {
    font-family:"Font Awesome 5 Free";
    content: "\f0e0";
    color: #A1EF8B;
    margin-right:8px;
    font-weight: 900;
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -.0667em;
}

#website::before {
    font-family:"Font Awesome 5 Free";
    content: "\f0ac";
    color: #A1EF8B;
    margin-right:8px;
    font-weight: 900;
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -.0667em;
}

#dirección::before {
    font-family:"Font Awesome 5 Free";
    content: "\f3c5";
    color: #A1EF8B;
    margin-right:8px;
    font-weight: 900;
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -.0667em;
}

/*==================================================*/

p.primeralinea {
    text-indent: 20px;
    padding: 2%;
    line-height: 120%;
}

.lista_aptitudes li {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    background-color: #21285A;
    border-radius: 5px;
    border-style: outset;
}

.educacion li {padding: 5px;}

.educacion p {color: black;}

